-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): bump github.com/prometheus/client_golang from 1.19.1 to 1.20.0 #723
chore(deps): bump github.com/prometheus/client_golang from 1.19.1 to 1.20.0 #723
Conversation
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.19.1 to 1.20.0. - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md) - [Commits](prometheus/client_golang@v1.19.1...v1.20.0) --- updated-dependencies: - dependency-name: github.com/prometheus/client_golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
WalkthroughThe recent updates to the Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Files ignored due to path filters (1)
go.sum
is excluded by!**/*.sum
Files selected for processing (1)
- go.mod (7 hunks)
Additional comments not posted (13)
go.mod (13)
48-48
: Verify the impact of metric changes ingit.luolix.top/prometheus/client_golang
.The update from
v1.19.1
tov1.20.0
includes the removal ofgo_memstat_lookups_total
and the addition of new metrics. Ensure that your monitoring setup is updated to reflect these changes.Verification successful
No usage of removed metric
go_memstat_lookups_total
found.The search did not find any usage of the
go_memstat_lookups_total
metric in the codebase, indicating that its removal in the update tov1.20.0
should not impact your monitoring setup. However, please manually verify that there are no other related issues due to the update.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Check for usage of the removed metric `go_memstat_lookups_total`. # Test: Search for the removed metric in the codebase. Expect: No usage of the removed metric. rg --type go 'go_memstat_lookups_total'Length of output: 39
87-87
: Verify the impact of updates incloud.google.com/go/compute/metadata
.The version update from
v0.2.3
tov0.3.0
may include bug fixes or new features. Verify if any breaking changes affect the application.
256-256
: Verify the impact of updates ingit.luolix.top/prometheus/procfs
.The version update from
v0.13.0
tov0.15.1
may include bug fixes or new features. Verify if any breaking changes affect the application.Verification successful
No direct usage of
github.com/prometheus/procfs
found in the codebase.The dependency is marked as indirect, and no direct references were found in the codebase. This suggests that the update from
v0.13.0
tov0.15.1
is unlikely to have a direct impact. However, consider verifying transitive dependencies that might rely on this package to ensure no indirect issues arise.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Check for breaking changes in `github.com/prometheus/procfs`. # Test: Search for usage of `github.com/prometheus/procfs` in the codebase. Expect: No breaking changes. rg --type go 'github.com/prometheus/procfs'Length of output: 43
255-255
: Verify the impact of updates ingit.luolix.top/prometheus/common
.The version update from
v0.52.2
tov0.55.0
may include bug fixes or new features. Verify if any breaking changes affect the application.
300-300
: Verify the impact of updates ingolang.org/x/sys
.The version update from
v0.19.0
tov0.22.0
may include bug fixes or new features. Verify if any breaking changes affect the application.
296-296
: Verify the impact of updates ingolang.org/x/crypto
.The version update from
v0.22.0
tov0.24.0
may include bug fixes or new features. Verify if any breaking changes affect the application.Verification successful
No direct usage of
golang.org/x/crypto
found.The
golang.org/x/crypto
package is not directly imported in the codebase. Since it is marked as an indirect dependency, its update fromv0.22.0
tov0.24.0
is unlikely to have a direct impact. However, if there are concerns about indirect usage, a manual review of dependencies might be necessary.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Check for breaking changes in `golang.org/x/crypto`. # Test: Search for usage of `golang.org/x/crypto` in the codebase. Expect: No breaking changes. rg --type go 'golang.org/x/crypto'Length of output: 34
Script:
#!/bin/bash # Description: Check for indirect dependencies or usage of `golang.org/x/crypto`. # Test: List all Go dependencies to see if `golang.org/x/crypto` is indirectly used. go list -m all | grep 'golang.org/x/crypto'Length of output: 113
Script:
#!/bin/bash # Description: Search for import statements of `golang.org/x/crypto` in Go files. # Test: Use ripgrep to find import statements of `golang.org/x/crypto` in Go files. rg --type go 'import.*golang.org/x/crypto'Length of output: 44
213-213
: Verify the impact of updates ingit.luolix.top/klauspost/compress
.The version update from
v1.17.7
tov1.17.9
may include bug fixes or new features. Verify if any breaking changes affect the application.
59-59
: Verify the impact of updates ingolang.org/x/net
.The version update from
v0.24.0
tov0.26.0
may include bug fixes or new features. Verify if any breaking changes affect the application.
301-301
: Verify the impact of updates ingolang.org/x/term
.The version update from
v0.19.0
tov0.21.0
may include bug fixes or new features. Verify if any breaking changes affect the application.
302-302
: Verify the impact of updates ingolang.org/x/text
.The version update from
v0.14.0
tov0.16.0
may include bug fixes or new features. Verify if any breaking changes affect the application.Verification successful
No direct usage of
golang.org/x/text
found in the codebase.The package
golang.org/x/text
is not directly imported in the codebase, suggesting that it is used as an indirect dependency. The update fromv0.14.0
tov0.16.0
should not impact the codebase directly, but ensure that any indirect dependencies using it are compatible with this version.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Check for breaking changes in `golang.org/x/text`. # Test: Search for usage of `golang.org/x/text` in the codebase. Expect: No breaking changes. rg --type go 'golang.org/x/text'Length of output: 32
Script:
#!/bin/bash # Description: Find which dependencies import `golang.org/x/text`. # Test: List all Go modules in the codebase that import `golang.org/x/text`. go list -m all | grep 'golang.org/x/text'Length of output: 111
Script:
#!/bin/bash # Description: Search for import statements of `golang.org/x/text` in Go files. # Test: Find all import statements of `golang.org/x/text`. rg --type go 'import "golang.org/x/text"' -A 5Length of output: 48
298-298
: Verify the impact of updates ingolang.org/x/oauth2
.The version update from
v0.18.0
tov0.21.0
may include bug fixes or new features. Verify if any breaking changes affect the application.Verification successful
Indirect Dependency Update for
golang.org/x/oauth2
The update from version
v0.18.0
tov0.21.0
is unlikely to impact the application directly, as it is an indirect dependency. However, reviewing the changelog or release notes for versionv0.21.0
is recommended to ensure no critical changes affect other dependencies.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Check for breaking changes in `golang.org/x/oauth2`. # Test: Search for usage of `golang.org/x/oauth2` in the codebase. Expect: No breaking changes. rg --type go 'golang.org/x/oauth2'Length of output: 34
Script:
#!/bin/bash # Find which direct dependencies require `golang.org/x/oauth2`. go mod graph | grep 'golang.org/x/oauth2' # Check for recent changes in the `go.mod` file related to `golang.org/x/oauth2`. git log -p -L '/golang.org\/x\/oauth2/',/^$/ -- go.modLength of output: 221
Script:
#!/bin/bash # Search for dependencies in go.mod that might require `golang.org/x/oauth2`. grep -A 5 'require (' go.mod # Check for changes related to `golang.org/x/oauth2` in the go.mod file. git log -p go.mod | grep -A 5 'golang.org/x/oauth2'Length of output: 1026
62-62
: Verify the impact of updates ingoogle.golang.org/protobuf
.The version update from
v1.33.0
tov1.34.2
may include bug fixes or new features. Verify if any breaking changes affect the application.
304-304
: Verify the impact of updates ingolang.org/x/tools
.The version update from
v0.20.0
tov0.21.1-0.20240508182429-e35e4ccd0d2d
may include bug fixes or new features. Verify if any breaking changes affect the application.
Superseded by #728. |
Bumps github.com/prometheus/client_golang from 1.19.1 to 1.20.0.
Release notes
Sourced from github.com/prometheus/client_golang's releases.
... (truncated)
Changelog
Sourced from github.com/prometheus/client_golang's changelog.
... (truncated)
Commits
73b811c
Cut 1.20.0 release. (#1580)7ce5089
gocollector: Attach original runtime/metrics metric name to help. (#1578)062300e
Remove go_memstat_lookups_total; added runtime/metrics calculation to memstat...aa3c00d
Update common Prometheus files (#1576)3ad2722
Add default Go runtime metrics for /gc/gogc:percent, /gc/gomemlimit:bytes, /s...0715727
Update common Prometheus files (#1573)3634bd9
ci: daggerize test and lint pipelines (#1534)28b5e6e
Merge pull request #1572 from prometheus/repo_sync8e18075
Update common Prometheus files46f77a9
Merge pull request #1571 from prometheus/dependabot/github_actions/github-act...Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by CodeRabbit